home *** CD-ROM | disk | FTP | other *** search
/ Steven Spielberg's Director's Chair / Steven Spielberg's Director's Chair (1996)(Random House)(Disc 1 of 3)[Mac-PC].iso / pc / autorun.arg < prev    next >
Text File  |  1996-07-30  |  2KB  |  62 lines

  1. BEGIN
  2.     {
  3.         //
  4.         // Only change prdouct name in one place
  5.         //
  6.         set _SetupIni to $ExePath
  7.         append "\\SUPPORT\\SETUP.INI" to _SetupIni
  8.  
  9.         //
  10.         // Set our important variables
  11.         //
  12.         set _Product to $IniVariable %_SetupIni% "Product" "ShortTitle"
  13.         set _IniFile to "DC.INI"
  14.         //set _HDRoot to $IniVariable %_IniFile% %_Product% "ProductHDRoot"
  15.         set _HDRoot to $IniVariable %_IniFile% "MAIN" "ProductHDRoot"
  16.         set _CDRoot to $ExePath
  17.         set _LangIni to %_CDRoot%
  18.         append "\\STR.INI" to _LangIni
  19.         set _ARunQuest to $IniVariable %_LangIni% "ArgFile" "Install"
  20.  
  21.         //
  22.         // Default to setup
  23.         //
  24.         set _Command to $ExePath
  25.         append "\\SETUP.EXE" to _Command
  26.  
  27.         //
  28.         // Check for an executable with the short title as the name
  29.         //
  30.         set _ChkFile to %_HDRoot% 
  31.         append "\\" to _ChkFile
  32.         append %_Product% to _ChkFile
  33.         append ".EXE" to _ChkFile
  34.         set _FileExists to $Exists %_ChkFile%
  35.                 // MessageBox %_ChkFile%
  36.  
  37.         //
  38.         // If we're installed, just run the product
  39.         //
  40.         if ( %_HDRoot% != "" && %_FileExists% == "y" ) {
  41.             set _Command to %_HDRoot%
  42.             append "\\" to _Command
  43.             append %_Product% to _Command
  44.             append ".EXE" to _Command
  45.             set _ARunQuest to $IniVariable %_LangIni% "ArgFile" "Run"
  46.         }
  47.  
  48.     }
  49.     -AUTORUN %_ARunQuest%
  50.     -NOKADUPE
  51.         -NOFIRSTWINDOW
  52.         -OnlyOne
  53.         -386Enhanced
  54.         -TITLE Steven Spielberg's Director's Chair
  55.         -VFreeBlock 2000
  56.         -VFreeMem 4700
  57.         -PFree 1700
  58.         -GlobalAlloc 1000
  59.         -COMMAND %_Command%
  60.         -Bye
  61. END
  62.